home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright 1989, 1990, John F. Haugh II
- * All rights reserved.
- *
- * Use, duplication, and disclosure prohibited without
- * the express written permission of the author.
- */
-
- /*
- * lastlog.h - structure of lastlog file
- *
- * @(#)lastlog.h 3.1 11:30:22 12/3/91
- *
- * This file defines a lastlog file structure which should be sufficient
- * to hold the information required by login. It should only be used if
- * there is no real lastlog.h file.
- */
-
- struct lastlog {
- time_t ll_time;
- char ll_line[8];
- };
-